home *** CD-ROM | disk | FTP | other *** search
- #
- # QOS Makefile for Watcom 9.5 C/C++ 32 with DOS/4GW extender.
- #
-
- CFLAGS = -DMSDOS
-
- all: helpcall.exe ~\help\example.hlp
-
- .c.obj :
- wcc386 $(CFLAGS) $*.c
-
- O = helpcall.obj
-
- helpcall.exe: wc4g.tag wc4g $(O)
- wlink N helpcall.exe f helpcall l sys op st=30k,caseexact
-
- wc4g.tag:
- del *.tag
- del *.obj
- del *.map
- del *.rsp
- del *.cfg
- del *.exe
- echo >wc4g.tag
-
- ~\help\example.hlp:
- cd .\example
- helplib @example.rsp
- copy example.hlp ~\help\.
- del example.hlp
- cd ..
-